4754e5
@@ -67,9 +67,7 @@
public class IncreasingToUpperBoundRegionSplitPolicy extends ConstantSizeRegionS
 
   @Override
   protected boolean shouldSplit() {
-    if (region.shouldForceSplit()) {
-      return true;
-    }
+    boolean force = region.shouldForceSplit();
     boolean foundABigStore = false;
     // Get count of regions that have the same common table as this.region
     int tableRegionsCount = getCountOfCommonTableRegions();
@@ -93,7 +91,7 @@
public class IncreasingToUpperBoundRegionSplitPolicy extends ConstantSizeRegionS
       }
     }
 
-    return foundABigStore;
+    return foundABigStore | force;
   }
 
   /**
